unity call function from another script

108

how to reference function in unity -

public GameObject myObject; //make ref. in inspector window

myObject.GetComponent<MyScript>().MyFunction();

call function from another script unity -

void Start()
{
    ClickToMove = FindObjectOfType<ClickToMoveScript>();
    ClickToMove.PlayWoodCuttingAnim();  
}  

Comments

Submit
0 Comments